home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6984 / 6984.xpi / chrome / lazarus.jar / content / lazarus-updates.js < prev    next >
Text File  |  2009-11-24  |  846b  |  31 lines

  1.  
  2.  
  3. //dictionary for update scripts
  4. Lazarus.updates = {};
  5.  
  6. Lazarus.updates["1.0.0"] = function(){
  7.     //updating from  pre-release version, kill any old database 
  8.     Lazarus.killDB();
  9.  
  10. Lazarus.updates["1.0.1"] = function(){
  11.     Lazarus.initDB();
  12.     //new formId code.
  13.     Lazarus.emptyDB();
  14.     //add new field to database to allow autofill fields
  15.     Lazarus.db.exe('ALTER TABLE forms ADD autofill INT');
  16.  
  17.  
  18.  
  19. Lazarus.updates["2.0beta1"] = function(){
  20.     //using weave's hybrid (RSA & AES) encryption instead of firefox's secret key ring
  21.     //adding full text search and lots of other goodness
  22.     Lazarus.killDB();
  23. }
  24.  
  25. Lazarus.updates["2.0beta2"] = function(){
  26.     Lazarus.initDB();
  27.     Lazarus.db.exe('ALTER TABLE forms ADD text_length INT');
  28.     Lazarus.db.exe('ALTER TABLE textdata ADD text_length INT');
  29. }